func crypto/sha256.appendUint32

9 uses

	crypto/sha256 (current package)
		sha256.go#L72: 	b = appendUint32(b, d.h[0])
		sha256.go#L73: 	b = appendUint32(b, d.h[1])
		sha256.go#L74: 	b = appendUint32(b, d.h[2])
		sha256.go#L75: 	b = appendUint32(b, d.h[3])
		sha256.go#L76: 	b = appendUint32(b, d.h[4])
		sha256.go#L77: 	b = appendUint32(b, d.h[5])
		sha256.go#L78: 	b = appendUint32(b, d.h[6])
		sha256.go#L79: 	b = appendUint32(b, d.h[7])
		sha256.go#L114: func appendUint32(b []byte, x uint32) []byte {